home *** CD-ROM | disk | FTP | other *** search
/ PC-Blue - MS DOS Public Domain Library / PC-Blue MS-DOS Public Domain Library - NYACC.iso / vol018 / protect < prev    next >
Encoding:
Text File  |  1987-01-11  |  551 b   |  19 lines

  1.              UNPROTECTING BASIC PROGRAMS
  2. Setup:
  3.    A>BASIC
  4.    LOAD      any unprotected program
  5.    DEF SEG
  6.    BSAVE"UNPRO.BAS",&H400,&H8F
  7. (do the same for BASICA but call it something like UNPRO.BSA)
  8. (you may also need separate versions for different levels of PC-DOS)
  9.  
  10. Unprotect:
  11.    LOAD  protected program
  12.    DEF SEG
  13.    BLOAD"UNPRO.BAS",&H400
  14. (The program in memory is now unprotected
  15. and can be listed, changed, or saved)
  16.  
  17. (This procedure is from the IBMPCUG BBS in Washington
  18.  and was originally from Chris Van Essen in Denver)
  19.